home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / CIncludes / QuickdrawText.h < prev    next >
C/C++ Source or Header  |  1996-05-01  |  3KB  |  124 lines

  1. /*
  2.      File:        QuickdrawText.h
  3.  
  4.      Contains:    Quickdraw Text Interfaces.
  5.  
  6.      Version:    Technology:    System 7.5
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. */
  18. #ifndef __QUICKDRAWTEXT__
  19. #define __QUICKDRAWTEXT__
  20.  
  21. #ifndef __TYPES__
  22. #include <Types.h>
  23. #endif
  24. #ifndef __MIXEDMODE__
  25. #include <MixedMode.h>
  26. #endif
  27. #ifndef __SCRIPTLAYOUT__
  28. #include <ScriptLayout.h>
  29. #endif
  30.  
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif
  34.  
  35. #if PRAGMA_IMPORT_SUPPORTED
  36. #pragma import on
  37. #endif
  38.  
  39. #if PRAGMA_ALIGN_SUPPORTED
  40. #pragma options align=mac68k
  41. #endif
  42.  
  43. #if FOR_SYSTEM7_AND_SYSTEM8_COOPERATIVE
  44. struct FontInfo {
  45.     short                             ascent;
  46.     short                             descent;
  47.     short                             widMax;
  48.     short                             leading;
  49. };
  50. typedef struct FontInfo FontInfo;
  51.  
  52. extern pascal void TextFont(short font)
  53.  ONEWORDINLINE(0xA887);
  54.  
  55. extern pascal void TextFace(StyleParameter face)
  56.  ONEWORDINLINE(0xA888);
  57.  
  58. extern pascal void TextMode(short mode)
  59.  ONEWORDINLINE(0xA889);
  60.  
  61. extern pascal void TextSize(short size)
  62.  ONEWORDINLINE(0xA88A);
  63.  
  64. extern pascal void SpaceExtra(Fixed extra)
  65.  ONEWORDINLINE(0xA88E);
  66.  
  67. extern pascal void DrawChar(CharParameter ch)
  68.  ONEWORDINLINE(0xA883);
  69.  
  70. extern pascal void DrawString(ConstStr255Param s)
  71.  ONEWORDINLINE(0xA884);
  72.  
  73. extern pascal void DrawText(const void *textBuf, short firstByte, short byteCount)
  74.  ONEWORDINLINE(0xA885);
  75.  
  76. extern pascal short CharWidth(CharParameter ch)
  77.  ONEWORDINLINE(0xA88D);
  78.  
  79. extern pascal short StringWidth(ConstStr255Param s)
  80.  ONEWORDINLINE(0xA88C);
  81.  
  82. extern pascal short TextWidth(const void *textBuf, short firstByte, short byteCount)
  83.  ONEWORDINLINE(0xA886);
  84.  
  85. extern pascal void MeasureText(short count, const void *textAddr, void *charLocs)
  86.  ONEWORDINLINE(0xA837);
  87.  
  88. extern pascal void GetFontInfo(FontInfo *info)
  89.  ONEWORDINLINE(0xA88B);
  90.  
  91. extern pascal void CharExtra(Fixed extra)
  92.  ONEWORDINLINE(0xAA23);
  93.  
  94. extern pascal void StdText(short count, const void *textAddr, Point numer, Point denom)
  95.  ONEWORDINLINE(0xA882);
  96.  
  97. extern pascal short StdTxMeas(short byteCount, const void *textAddr, Point *numer, Point *denom, FontInfo *info)
  98.  ONEWORDINLINE(0xA8ED);
  99.  
  100. #if CGLUESUPPORTED
  101. extern void drawstring(const char *s);
  102.  
  103. extern short stringwidth(const char *s);
  104.  
  105. extern void stdtext(short count, const void *textAddr, const Point *numer, const Point *denom);
  106.  
  107. #endif
  108. #endif
  109.  
  110. #if PRAGMA_ALIGN_SUPPORTED
  111. #pragma options align=reset
  112. #endif
  113.  
  114. #if PRAGMA_IMPORT_SUPPORTED
  115. #pragma import off
  116. #endif
  117.  
  118. #ifdef __cplusplus
  119. }
  120. #endif
  121.  
  122. #endif /* __QUICKDRAWTEXT__ */
  123.  
  124.